home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / -archivi / -recent2 / dring.lha / rexx / string.rexx < prev    next >
OS/2 REXX Batch file  |  1999-02-20  |  143b  |  12 lines

  1. /* Set rings before answer */
  2.  
  3. ADDRESS DRING
  4.  
  5. parse arg str
  6.  
  7. if str~="" THEN
  8.   "String" str
  9. else
  10.   say "USAGE: string.rexx <new string>"
  11. endif
  12.